iT邦幫忙

2022 iThome 鐵人賽

DAY 23
0
AI & Data

初學Python30天系列 第 23

初學python第二十三天

  • 分享至 

  • xImage
  •  

今天還是做查詢功能:
s=[]
l=[]
m=[]
e=[]
i=0
for i in range(5):
i+=1
n=input('請輸入姓名?')
l=int(input('請輸入{}國文成績?'.format(n)))
m=int(input('請輸入{}數學成績?'.format(n)))
e=int(input('請輸入{}英文成績?'.format(n)))
print('姓名',n,'國文成績',m,'數學成績',l)

while True:
name=input('請輸入想查詢的同學?')
if name==n:
print(n,'的國文成績為',l,'的數學成績為',m,'的英文成績為',e)
break
else:
print('無法查詢')
這是我一開始用列表的程式:
s=[]
l=[]
m=[]
e=[]
i=0
for i in range(5):
i+=1
n=input('請輸入姓名?')
l=int(input('請輸入{}國文成績?'.format(n)))
m=int(input('請輸入{}數學成績?'.format(n)))
e=int(input('請輸入{}英文成績?'.format(n)))
print('姓名',n,'國文成績',m,'數學成績',l)

while True:
name=input('請輸入想查詢的同學?')
l.append(s)
m.append(s)
e.append(s)
if name==n:
print(n,'的國文成績為',l,'的數學成績為',m,'的英文成績為',e)
break
else:
print('無法查詢')
接者將全部加入s,然後又沒頭緒了....
等下次假日我一定要把它寫出來。


上一篇
初學python第二十二天
下一篇
初學python第二十四天
系列文
初學Python30天30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言